home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 49
/
Volume 49 - JOGO DISK .iso
/
Games
/
fetchstretch.swf
/
scripts
/
frame_36
/
DoAction.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-10-01
|
304 b
|
19 lines
global_snd = new Sound(this);
mute = false;
sound_mc.onPress = function()
{
if(!mute)
{
mute = true;
global_snd.setVolume(0);
this.gotoAndStop(30);
}
else
{
mute = false;
global_snd.setVolume(100);
this.gotoAndPlay(1);
}
};
stop();